@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

*,
*:before,
*:after {
    box-sizing: border-box;
}


* {
    scrollbar-width: thin;
    scrollbar-color: #16171f #1e1f26;
}

*::-webkit-scrollbar {
    background-color: #1e1f26;
    height: 20px;
    width: 20px;
}

*::-webkit-scrollbar-thumb {
    background: #383d4d;
    border-radius: 99em;
    border: 6px solid #1e1f26;
}

html,
body {
    margin: 0;
    padding: 0;
}

h1
{
  font-size: 56px;
  text-shadow: -1px -1px #9df, 1px 1px #49d, -3px 0 4px #000;
  font-family:"Segoe print", Arial, Helvetica, sans-serif;
  color:#6bf;
  padding:24px 32px 32px 32px;
  font-weight:lighter;
  text-align:center;
  display:inline;
  line-height:150px;
}

img {
    display: block;
    width: 100%;
    margin-bottom: 1.5rem;
}

ul {
    padding: 0;
    margin: 0;
    display: block;
    width: 100%;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
    text-align: center;
    scroll-behavior: smooth;
}

li {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    width: min(50vw, 600px);
    display: inline-block;
    text-align: center;
    background-color: #16171f;
    color: #9b9dad;
    padding-bottom: 1.5rem;
    font-size: clamp(18px, 2.5vw, 22px);
    box-shadow: -10px 0 30px 0 rgba(#000, 0.25);
    margin-left: -4px;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #1e1f26;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

a {
  flex: 1;
  text-decoration: none;
  outline: none;
  text-align: center;
  line-height: 3;
  color: black;
}

a:link,
a:visited,
a:focus {
    background-color: #16171f;
    color: #9b9dad;
    font-size: clamp(18px, 2.5vw, 22px);
}

a:hover {
    color: white;
}

a:active {
  color: darkred;
}

a:hover img {
    opacity: 0.5;
}